body {
/*   background: linear-gradient(214deg, #6a2aaf, #2e2a9e, #2c9995, #0a1438, #08122c, #08122c, #6a2aaf, #2e2a9e, #08122c, #0a1438, #0a1438, #2c9995, #2e2a9e, #6a2aaf);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0; */
}

/* @keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
} */

/*Animation on alert*/
@keyframes slideInFromTop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutToTop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.fade-in {
  animation: slideInFromTop 0.5s ease-in;
}

.fade-out {
  animation: slideOutToTop 0.5s ease-out;
}


/*Animation on cards */

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.card {
  transform-origin: left center;
  animation: slideIn 0.8s ease-out forwards;
}

#card1 {
  animation-delay: 0.1s;
}

#card2 {
  animation-delay: 0.3s;
}
/*Animations on cards ends*/

/*Animations on Whatsapp texts (starts)*/
.stack-animation span {
  opacity: 0;
  transform: translateY(10px);
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc(var(--index) * 0.44s);
}

.stack-animation.animate span {
  opacity: 1;
  transform: translateY(0);
}
/*Animations on Whatsapp texts (end)*/

/*Animations on Whatsapp join group (start)*/
.pulse-button {
  animation: pulse 1.9s infinite; /* Apply the animation */
}

@keyframes pulse {
  0% {
    transform: scale(1); /* Normal size */
  }
  50% {
    transform: scale(0.9); /* Slightly smaller */
  }
  100% {
    transform: scale(1); /* Back to normal size */
  }
}
/*Animations on Whatsapp join group (ends)*/

#card1,
#card2 {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 100%;
}

/*made with love*/
:root {
  --heart-color: #fe5353;
  /* Light red color */
}

.heart {
  color: var(--heart-color);
}

/*PopUp glassmorphism*/

#alert-border-3 {
  background: rgb(24 51 52 / 75%);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);

  margin-bottom: 8px;
  margin-right: 8px;
  margin-left: 8px;
  margin-top: 8px;
}

.initial-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e9eef5;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

#overlay-content {
  width: 80%;
  max-width: 500px;
}

.dotlottie-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-center {
  text-align: center;
}

.loading-center svg {
  display: block;
  margin: 0 auto;
}
